home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-04-19 | 1.2 KB | 47 lines | [TEXT/MPS ] |
- //# Copyright: © 1993-94 by Apple Computer, Inc., all rights reserved.
- #ifndef _PFTLITR_
- #define _PFTLITR_
-
- #ifndef _ODOBJECT_
- #include "ODObject.idl"
- #endif
-
- //=====================================================================================
- // Classes defined in this interface
- //=====================================================================================
- interface ODPlatformTypeSetIterator;
-
- //=====================================================================================
- // Classes used by this interface
- //=====================================================================================
- interface ODPlatformTypeSet;
-
- //=====================================================================================
- // Class ODPlatformTypeSetIterator
- //=====================================================================================
-
- interface ODPlatformTypeSetIterator : ODObject
- {
- void InitODPlatformTypeSetIterator(in ODPlatformTypeSet typeSet);
-
- ODBoolean IsNotComplete();
- ODPlatformType First();
- ODPlatformType Next();
-
- #ifdef __SOMIDL__
- implementation
- {
- override:
- somUninit;
- releaseorder:
- InitODPlatformTypeSetIterator,
- IsNotComplete,
- First,
- Next;
- };
- #endif
- };
-
-
- #endif // _PFTLITR_
-